home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / misc / flexcat1_4.lha / flexcat / src / FlexCat.cd < prev    next >
Text File  |  1994-10-24  |  6KB  |  200 lines

  1. #language english
  2. #version 0
  3. ;   FlexCat:            The flexible catalog generator        V1.0
  4. ;   Copyright (C)   1993    Jochen Wiedmann
  5. ;
  6. ;   This program is free software; you can redistribute it and/or modify
  7. ;   it under the terms of the GNU General Public License as published by
  8. ;   the Free Software Foundation; either version 2 of the License, or
  9. ;   (at your option) any later version.
  10. ;
  11. ;   This program is distributed in the hope that it will be useful,
  12. ;   but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. ;   GNU General Public License for more details.
  15. ;
  16. ;   You should have received a copy of the GNU General Public License
  17. ;   along with this program; if not, write to the Free Software
  18. ;   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. ;
  20. ;
  21. ;   This file contains the catalog-definitions and the english strings
  22. ;   that are builtin.
  23. ;
  24. ;   Computer:    Amiga 1200            Compiler:    Dice 2.07.54 (3.0)
  25. ;
  26. ;   Author:    Jochen Wiedmann
  27. ;        Am Eisteich 9
  28. ;      72555 Metzingen
  29. ;        Tel. 07123 / 14881
  30. ;        Internet: wiedmann@uni-tuebingen.de
  31. ;
  32. ;
  33. ;   The following defines a sequence of strings. Each definition looks as
  34. ;   follows:
  35. ;
  36. ;   MSG_STRING_NAME (num/minlen/maxlen)
  37. ;   text
  38. ;
  39. ;   where:
  40. ;
  41. ;   MSG_STRING_NAME is the name of the macro-definition, that will be used
  42. ;            to get the string.
  43. ;   num         is the number, which MSG_STRING_NAME will stand for
  44. ;   minlen        is the minimum length of "text" (this may be missing)
  45. ;   maxlen        is the maximum length of "text" (this may be missing
  46. ;            too)
  47. ;   text        is the text, the string will contain
  48. ;
  49. ;   Each definition is preceded by a remark, which tells what the string
  50. ;   is used for.
  51. ;
  52. ;
  53. ;   Error message: Out of memory.
  54. msgMemoryError (//)
  55. Out of memory!
  56. ;
  57. ;   Warning message; must contain one %s (file), one %d (line number)
  58. msgWarning (//)
  59. %s, Line %d; warning: \
  60.  
  61. ;
  62. ;   Warning message: Expected hex character.
  63. msgExpectedHex (//)
  64. Expected hex character (one of [0-9a-4A-F]).
  65. ;
  66. ;   Warning message: Expected octal character.
  67. msgExpectedOctal (//)
  68. Expected octal character (one of [0-7]).
  69. ;
  70. ;   Error message: Cannot open catalog description; must contain one %s
  71. ;   (file name)
  72. msgNoCatalogDescription (//)
  73. Cannot open catalog description %s.
  74. ;
  75. ;   Warning message: Too much Lengthbytes; must contain one %d (maximum).
  76. msgNoLengthBytes (//)
  77. LengthBytes > %d (sizeof long) not possible.
  78. ;
  79. ;   Warning message: Unknown catalog description command.
  80. msgUnknownCDCommand (//)
  81. Unknown catalog description command
  82. ;
  83. ;   Warning message: Unexpected blank.
  84. msgUnexpectedBlanks (//)
  85. Unexpected blanks.
  86. ;
  87. ;   Warning message: Identifier expected.
  88. msgNoIdentifier (//)
  89. Missing identifier.
  90. ;
  91. ;   Warning message: '(' expected.
  92. msgNoLeadingBracket (//)
  93. Missing '('.
  94. ;
  95. ;   Warning message: Identifier number redeclared.
  96. msgDoubleID (//)
  97. ID number used twice.
  98. ;
  99. ;   Warning message: Identifier redeclared.
  100. msgDoubleIdentifier (//)
  101. Identifier redeclared.
  102. ;
  103. ;   Warning message: '/' expected (MinLen).
  104. msgNoMinLen (//)
  105. Expected MinLen (character '/').
  106. ;
  107. ;   Warning message: '/' expected (MaxLen).
  108. msgNoMaxLen (//)
  109. Expected MaxLen (character '/').
  110. ;
  111. ;   Warning message: ')' expected.
  112. msgNoTrailingBracket (//)
  113. Expected ')'.
  114. ;
  115. ;   Warning message: Extra characters
  116. msgExtraCharacters (//)
  117. Extra characters at the end of the line.
  118. ;
  119. ;   Warning message: Missing catalog string
  120. msgNoString (//)
  121. Unexpected end of file (missing catalog string).
  122. ;
  123. ;   Warning message: String too short.
  124. msgShortString (//)
  125. String too short.
  126. ;
  127. ;   Warning message: String too long.
  128. msgLongString (//)
  129. String too long.
  130. ;
  131. ;   Error message: No catalog translation file; must contain one %s (file
  132. ;   name).
  133. msgNoCatalogTranslation (//)
  134. Cannot open catalog translation file %s.
  135. ;
  136. ;   Warning message: Missing catalog translation command.
  137. msgNoCTCommand (//)
  138. Missing catalog translation command. (Expected second '#'.)
  139. ;
  140. ;   Warning message: Unknown catalog translation command.
  141. msgUnknownCTCommand (//)
  142. Unknown catalog translation command.
  143. ;
  144. ;   Error message: Missing catalog translation version.
  145. msgNoCTVersion (//)
  146. Missing catalog translation version.
  147. ;
  148. ;   Error message: Missing catalog translation language.
  149. msgNoCTLanguage (//)
  150. Missing catalog translation language.
  151. ;
  152. ;   Error message: Cannot open catalog file. Must contain one %s (file name).
  153. msgNoCatalog (//)
  154. Cannot open catalog file %s.
  155. ;
  156. ;   Error message: Cannot create catalog translation file. Must contain
  157. ;   one %s (file name).
  158. msgNoNewCTFile (//)
  159. Cannot create catalog translation file %s.
  160. ;
  161. ;   Warning message: Unknown identifier. Must contain one %s (identifier).
  162. msgUnknownIdentifier (//)
  163. %s missing in catalog description.
  164. ;
  165. ;   Error message: No source description file. Must contain one %s (file
  166. ;   name).
  167. msgNoSourceDescription (//)
  168. Cannot open source description file %s.
  169. ;
  170. ;   Error message: No source file. Must contain one %s (file name).
  171. msgNoSource (//)
  172. Cannot open source file %s.
  173. ;
  174. ;   Warning message: Unknown string type
  175. msgUnknownStringType (//)
  176. Unknown string type.
  177. ;
  178. ;   Warning message: Missing trailing ')' in %(..).
  179. msgNoTerminateBracket (//)
  180. Unexpected end of line. (Missing ')')
  181. ;
  182. ;   Usage message
  183. msgUsage (//)
  184. Usage:    FlexCat CDFILE/A,CTFILE,CATALOG/K,NEWCTFILE/K,SOURCES/M\n\n\
  185.     CDFILE:    catalog description file to scan.\n\
  186.     CTFILE:    catalog translation file to scan.\n\
  187.     CATALOG:    catalog file to create.\n\
  188.     NEWCTFILE:    catalog translation file to create.\n\
  189.     SOURCES:    sources to create; must be something like sfile=sdfile,\n\
  190.         where sfile is a sourcefile and sdfile is a source\n\
  191.         description file.\n
  192. ;
  193. ;   Error message: No catalog translation argument
  194. msgNoCTArgument (//)
  195. Creating a catalog needs a catalog translation file as argument.
  196. ;
  197. ;   Warning message: No binary characters.
  198. msgNoBinChars (//)
  199. Binary characters in stringtype None.
  200.